home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 3 / ct-rom iiib.zip / ct-rom iiib / WINDOWS / UTILITY / DESKTOP / W_ONE49 / WIN_ONE.TX_ / WIN_ONE.TX
Text File  |  1994-04-27  |  32KB  |  800 lines

  1.          _                     __
  2.         - - /, /,            ,-||-,
  3.           )/ )/ )  '        ('|||  )
  4.           )__)__) \\ \\/\\ (( |||--)) \\/\\  _-_
  5.          ~)__)__) || || || (( |||--)) || || || \\
  6.           )  )  ) || || ||  ( / |  )  || || ||/
  7.          /-_/-_/  \\ \\ \\   -____-   \\ \\ \\,/
  8.  
  9.           WinOne - Super Command Shell for Windows 3.1
  10.  
  11.  
  12. WinOne Registration
  13. -------------------
  14.  
  15. Due to the overwhelming number of suggestions, the registration benefits 
  16. and charges have now changed as of the 1st of April 1994 (this does not
  17. affect already registered users). To register WinOne, print out the 
  18. Registration Form, supplied with WinOne, in the file REGISTER.FRM, fill 
  19. it out and send it along with the full registration fee of :-
  20.  
  21.     $20.00 per copy for 1 copy.
  22.     $18.00 per copy for 2 to 5 copies.
  23.     $15.00 per copy for 6 to 20 copies.
  24.     $10.00 per copy for 20+ copies.
  25.  
  26. to :-
  27.     Lucien  Cinc
  28.     56A  Harbord  Road
  29.     Harbord,  NSW  2096  
  30.     Australia
  31.  
  32. I will send you a registration number that will disable the displaying of 
  33. DEMO in the caption bar and NOT REGISTERED in the start-up information 
  34. screen, along with the latest version of WinOne. A registered user is 
  35. entitled to product support via the phone (ie. both FAX and voice) and 
  36. the Internet (ie. E-mail) and will also receive the next upgrade of 
  37. WinOne, free of charge. Please show your support for the Shareware concept
  38. by registering your copy of WinOne.
  39.  
  40. History of Features
  41. -------------------
  42.  
  43. WinOne 4.9 includes the following:-
  44.  
  45.     1. This version of WinOne and all future versions of WinOne will be 
  46.        supplied with the following printable documentation (ie. both 
  47.        user and programming manuals) :-
  48.  
  49.         1. WIN_ONE.DOC    - Word for Windows 2.0a format user manual.
  50.         2. WIN_ONE.PS    - Postscript format user manual.
  51.         3. WOIO.DOC    - Word for Windows 2.0a format programming 
  52.                   manual.
  53.         4. WOIO.PS    - Postscript format programming manual.
  54.  
  55.     2. Fixed a problem with CD-ROM drives. The root directory of a 
  56.        CD-ROM drive was not being set as the current directory, when
  57.        it was the current directory.
  58.     3. The screen saver can now be switched on or off from the command 
  59.        line or in a batch program. The environment variable LOCK stores
  60.        the previous ON or OFF setting. See the LOCK command for more 
  61.        information.
  62.     4. Button commands can now be entered in unix format when unix mode
  63.        is enabled.
  64.     5. Improved the DESCRIBE command, which now allows a string argument
  65.        for the description.
  66.     6. New batch commands including :-
  67.  
  68.         1. END    - end a batch program. 
  69.         2. STOP - stop processing a batch program and continue
  70.               processing the batch program that called this one 
  71.               (ie. using the CALL batch command). When there is 
  72.               no batch program to continue processing, then the 
  73.               batch program simple ends.
  74.  
  75.     7. New WOIO function system(), which can be used to run any program
  76.        or command (both internal or external) from within an external 
  77.        command.
  78.     8. Improved the SCOPY and SMOVE commands, which now prompts the user,
  79.        whether to overwrite, overwrite always or skip a file if it 
  80.        already exists.
  81.  
  82. WinOne 4.8 includes the following:-        (Not Released)
  83.  
  84.     1. Major improvement in the WOIO library package. The programmer 
  85.        no longer needs to check to see if ^C has been pressed. The 
  86.        WOIO library now transparently looks after ^C presses. The 
  87.        function isbreak() has been removed from the WOIO library. 
  88.  
  89.        Instead a new function yield() has been added to the library, 
  90.        which should be used to allow other tasks to multitask, for 
  91.        example :-
  92.             
  93.         #include "woio.h"
  94.  
  95.         int main(void)
  96.         {
  97.             while (1)
  98.                 yield();    /* allow multutasking */
  99.         }
  100.                 
  101.        Note: All external commands written with previous versions of 
  102.        the WOIO library (ie. 2.6 and before) will still work with 
  103.        this version and newer versions of WinOne.
  104.     2. The WOIO package now includes the library WOIOL.LIB, which 
  105.        supports the Large Memory Model.
  106.     3. New external command STRINGS, which displays all character strings
  107.        inside an executable (or binary) file.
  108.     4. Increased the number of characters used for file descriptions to 
  109.        60 characters.
  110.     5. Command ARCH now displays file descriptions.
  111.     6. Command WHERE now searches the current drive as well as all the 
  112.        non-removable drives. Previously if the current drive was a 
  113.        removable drive it was not searched.
  114.  
  115. WinOne 4.7 includes the following:-        (Not Released)
  116.  
  117.     1. Drag and Drop support for any program that can drag files (eg. 
  118.        the File Manager). WinOne allows one or more file or path names 
  119.        to be dragged into the main WinOne window, and when dropped, the
  120.        file or path names will be added to the end of the current 
  121.        WinOne command line. File names will have a space character 
  122.        added to the end of the file name, and paths will have a 
  123.        backslash character added to the end of the path name. 
  124.     2. New internal command DRAG, which allows one or more files to be 
  125.        dragged from WinOne to another program which supports drag and 
  126.        drop (eg. the Program Manager).
  127.     3. General inprovements in the WinOne help files, including :-
  128.  
  129.         1. Addition of a button to both the WIN_ONE.HLP and 
  130.            WOIO.HLP files which switch between the two help files,
  131.            when pressed. 
  132.         2. Both Help files are now automatically sized and 
  133.            positioned when displayed.
  134.         3. Titles have been placed into a non-scrolling region at
  135.            the top of each topic.
  136.  
  137.     4. Centred all of the Borland Message Boxes. I assumed Borland's 
  138.        Message Boxes worked the same as normal windows Message Boxes, 
  139.        but this is not the case. They had to be manually centred.
  140.     5. Multiple instances of WinOne are now cascaded automatically on
  141.        start up.
  142.  
  143. WinOne 4.6 includes the following:-
  144.  
  145.     1. Bug fix. When multiple instances of WinOne are running, the first 
  146.        instance can no longer be closed, until all other instances of 
  147.        WinOne are closed first. Previously, this would course a General 
  148.        Protection Fault.
  149.     2. New External Commands :-
  150.  
  151.         1. TITLE    - Displays the title strings that Windows 
  152.                   executable's contain.
  153.         2. CALEND    - Displays a calender for a given year.
  154.  
  155.     3. Additional IF statement constructs to check if a window caption 
  156.        or a window class exists.
  157.     4. Internal improvements including :-
  158.     
  159.         1. Undocumented windows function calls are no longer used.
  160.         2. Improved button drawing, so that the buttons no longer 
  161.            flash when they are pressed.
  162.     
  163.     5. Improved the commands COPY and MOVE. They no longer require the
  164.        parameter destination to be specified. The current directory is
  165.        used when the parameter destination is not specified.
  166.     6. Redirection characters used inside string arguments are now 
  167.        correctly interpreted. For example :-
  168.  
  169.         FIND *.* ">"
  170.  
  171.        will no longer result in an 'unable to redirect' error, instead
  172.        command FIND will search for all occurrence of the string ">", 
  173.        for all the files in the current directory.
  174.  
  175. WinOne 4.5 includes the following:-        (Not Released)
  176.  
  177.     1. Improved the WinOne Installation Program, which includes the 
  178.        following :-
  179.  
  180.         1. Support for compressed files.
  181.         2. Bug Fix. Now more than one item can be placed into a 
  182.            Program Manager group.
  183.         3. The Program Manager is no longer moved to the centre of 
  184.            the desktop and resized.
  185.  
  186.     2. The WOIO library package now displays a message box that will 
  187.        notify the user when an External Command is intended to be run 
  188.        for a newer version of WinOne.
  189.     3. New External commands :-
  190.  
  191.         1. BASE        - convert between binary, octal, decimal or 
  192.                   hexadecimal numbers.
  193.         2. SHRED    - delete a single file and destroy the 
  194.                   contents of the file in the process, so 
  195.                   that it can not be undeleted.
  196.  
  197.     4. Two new batch commands GOSUB and RETURN. Command GOSUB will jump
  198.        to a sub-routine in a batch program and continue to process the
  199.        batch program from that point onwards, until a RETURN command is
  200.        processed. Execution of the batch program will then return to the 
  201.        next command following the original GOSUB command.
  202.     5. Batch programs now check to see if they are being modified or
  203.        deleted while they are running. A window is displayed to inform
  204.        the user if it has and then the batch program is stopped.
  205.  
  206. WinOne 4.4 includes the following:-        (Not Released)
  207.  
  208.     1. All the WinOne Dialog Windows have been redone using Borland's 
  209.        Windows Custom Control Library (ie. BWCC.DLL). This gives 
  210.        WinOne a new and more professional look.
  211.     2. New commands including :-
  212.         
  213.         1. SENDKEYS    - Send a window a sequence of key strokes.
  214.         2. SCOPY     - Copy files safely. Will not overwrite a 
  215.                   file that already exists.
  216.         3. SMOVE    - Move files safely. Will not overwrite a 
  217.                   file that already exists.
  218.  
  219.     3. New Batch commands including :-
  220.  
  221.         1. GETSTR    - which gets a character string from the 
  222.                      user and places the result in an 
  223.                   environment variable.
  224.         2. DIRS        - Display the directory stack.
  225.         3. PUSHD    - Change directory and push the previous 
  226.                   directory onto the directory stack.
  227.         4. POPD        - pop the last directory from the directory
  228.                   stack, making it the current directory.
  229.         5. SLEEP    - Do nothing for some time.
  230.  
  231.     4. Improved DIR command. A wide directory listing (ie. DIR /W) now 
  232.        lists files down the columns instead of across the rows.
  233.     5. The WOIO package now includes the library WOIOC.LIB, which 
  234.        supports the Compact Memory Model.
  235.     6. New functions for the WOIO package including :-
  236.  
  237.         1. getdesc()    - Get a file description
  238.         2. setdesc()    - Set a file description
  239.         3. deldesc()    - Delete a file description
  240.         4. atoc()    - delimit a string containing a number 
  241.                   with comma's.
  242.  
  243.     7. The Status Bar now contains a stopwatch.
  244.  
  245. WinOne 4.3 includes the following:-
  246.  
  247.     1. New external command DUPLICAT, which can locate all duplicate 
  248.        files, by name or size or content, for any drive.
  249.     2. New external command LOGO, which changes the default Windows 
  250.        start up logo. There are four images supplied, which can be used 
  251.        to replace the default start up logo :-
  252.  
  253.         1. GLOBE.RLE - Globe of the world
  254.         2. LIPS.RLE  - Pair of lips
  255.         3. SEXY.RLE  - Nude girl
  256.         4. BLACK.RLE - Black (ie. no logo)
  257.  
  258.     3. Clipboard improvements including :-
  259.  
  260.         1. Marking and copying to the clipboard anytime WinOne
  261.            is waiting for a key stroke (eg. while typing a file 
  262.            and waiting at the -- more -- prompt).
  263.         2. Pasting from the clipboard anytime WinOne is waiting
  264.            for a string to be entered (eg. while an external 
  265.            command is waiting for string input).
  266.         3. CR-LF characters are no longer added to the last line 
  267.            that is copied to the clipboard. Similarly, a single 
  268.            line copied to the clipboard, will not include the CR-LF 
  269.            characters.
  270.  
  271.     4. Command FIND now uses the very fast Boyer-Moore Algorithm to
  272.        locate a string inside a text file.
  273.  
  274. WinOne 4.2 includes the following:-        (Not Released)
  275.  
  276.     1. ^C checking for redirected output. Previously there was no ^C
  277.        checking preformed when stdout was redirected on the command
  278.        line.       
  279.     2. Comma's are now used to delimit thousands, when displaying file 
  280.        sizes for the commands DIR, ARCH and DISK.
  281.     3. WOIO library bug fix for function argstr(), which did not return 
  282.        the a converted command line string.
  283.     4. New WOIO library global variable errcnt, which counts the number
  284.        of error messages displayed by perror().
  285.     5. New WOIO library functions for copying and appending a source 
  286.        file to a destination file :-
  287.  
  288.         1. filesize() - file size in bytes
  289.         2. filecpy()  - copy a file
  290.         3. filencpy() - copy part of a file
  291.         4. filecat()  - concatenate a file
  292.         5. filencat() - concatenate part of a file
  293.  
  294.     6. New source code examples for the WOIO library :- 
  295.         
  296.         1. ARGS        - displays in a tabular form the values 
  297.                   returned from the arg...() functions and
  298.                   the arg_c and arg_v global variables, for 
  299.                   the command line arguments entered at the 
  300.                   at the WinOne prompt.
  301.         2. MERGE    - Merges two file together.
  302.  
  303.     7. New /L switch for the command HELP, which will display the WOIO.HLP
  304.        file instead of the WIN_ONE.HLP file.
  305.  
  306. Major Version 4.1
  307. -----------------
  308.  
  309.     1. Registered users will no longer be able to use there old 
  310.        registration numbers. An update fee of $20 will be charged
  311.        for a new registration number. See the file REGISTER.FRM.
  312.     2. WinOne now includes the WOIO library package, which allows 
  313.        external commands to be programmed. External commands use
  314.        the main WinOne window for there output and generally give
  315.        the impression of running inside the main WinOne window. The
  316.        library includes the following files :-
  317.  
  318.         1. WOIO.HLP  - Help file that contains all the information
  319.                    needed to used this package.
  320.         2. WOIO.H    - header file
  321.         3. WOIOS.LIB - Small model library
  322.         4. WOIOM.LIB - Medium model library
  323.  
  324.         5. Source code example files for external commands :-
  325.  
  326.             a. SPLIT
  327.             b. TOUCH
  328.  
  329.        The WOIO library package requires either Borland or Turbo
  330.        C/C++ compilers for Windows 3.0 or above.
  331.  
  332. WinOne 3.9 includes the following:-        (Not Released)
  333.  
  334.     1. A new Unix Mode feature, which will give WinOne a look and feel
  335.        similar to the Unix Operating System when activated. For example,
  336.  
  337.         Under DOS:-
  338.         DIR C:\WIN_ONE /OWL
  339.  
  340.         Under Unix:-
  341.         dir c:/win_one -owl
  342.  
  343.        See the main WinOne help file for more information about this 
  344.        feature.
  345.     2. New command PRINT, which can be used to print text files via the
  346.        Printer Manager. This command can also be used to setup the 
  347.        printer.
  348.     3. Two new external commands DOSUNIX and UNIXDOS, which converts DOS
  349.        text files to Unix text files and visa-versa.
  350.  
  351. WinOne v3.8 includes the following:-        (Not Released)
  352.  
  353.     1. New External banner commands, which displays small text 
  354.        characters to the screen, including :-
  355.  
  356.         1. GOTHIC  - Horizontal Gothic style characters.
  357.         2. SBANNER - Horizontal characters. 
  358.  
  359.     2. New External Command MERGE, which merges two files together.
  360.     3. Random Desktop Wallpaper support, when enabled changes the 
  361.        desktop wallpaper each time WinOne is run.
  362.  
  363. WinOne v3.7 includes the following:-        (Not Released)
  364.  
  365.     1. Improve ^C checking for command COPY, which checks for ^C while
  366.        a file is being copied. Previously ^C was only checked before 
  367.        and after a file has finished copying.
  368.     2. New /Y switch for command DEL, which assumes yes for all 
  369.        questions.
  370.     3. Two new hot-spots for the built in screen saver. Leaving the 
  371.        mouse cursor in the top left hand corner will never active the
  372.        screen saver and leaving the mouse cursor in the top right
  373.        hand corner for 2 seconds will active the screen saver.
  374.  
  375. WinOne v3.6 includes the following:-        (Not Released)
  376.  
  377.     1. The Windows Screen Saver is now automatically disabled when
  378.        WinOne starts up and is re-enabled when WinOne exits. This
  379.        means that the Windows Screen Saver can be left enabled, so
  380.        that it will still work when WinOne is not running.
  381.     2. Windows that are set to "keep in front", will now be covered
  382.        when the WinOne Screen Saver is activated.
  383.     3. New command MODULES, which displays the modules currently
  384.        loaded into memory.
  385.     4. New switches for command EXIT, including :-
  386.  
  387.         1. /r - Restart Windows.
  388.         2. /b - Reboot the computer.
  389.  
  390.     5. New external command AUTOGEN (currently only available to 
  391.        registered users) produces all the files needed to program
  392.        an external command. The files generated include :-
  393.  
  394.         1. Definition file (.DEF)
  395.         2. Project file    (.PRJ)
  396.         3. Disk file       (.DSK)
  397.         4. Resource file   (.RC )
  398.         5. C++ file        (.CPP)
  399.         6. Header file     (.H  )
  400.         7. Batch file to clean up files (CLEAN.BAT)
  401.  
  402.     6. All external commands now contain an icon. This icon has black 
  403.        text on a white background. To view the icon used the VIEWICON 
  404.        command.
  405.     7. All External commands now include a /v switch which displays the 
  406.        respective commands version information.
  407.  
  408. WinOne v3.5 includes the following:-
  409.  
  410.     1. New external command DECOMP, which decompresses UNIX 
  411.        compressed files.
  412.     2. New external command DETAR, which detars UNIX tar files.
  413.     3. New external command FUNC, which allows Windows API 
  414.        functions to be called at run time.
  415.     4. Moved the separate help files for external commands into 
  416.        the main WinOne help file. This allows help to be 
  417.        displayed using the HELP command, from the WinOne prompt.
  418.        For example, to get help for the external command DECOMP,
  419.        enter at the WinOne prompt :-
  420.  
  421.             HELP DECOMP
  422.  
  423.     5. New Status Bar option, that will keep the Status Bar in 
  424.        front of all other windows.
  425.     6. New command CMP, which compares the contents of two files,
  426.        byte by byte and displays the differences between them.
  427.  
  428. WinOne v3.4 includes the following:-        (Not Released)
  429.  
  430.     1. Support for external commands that execute inside the
  431.        main WinOne window. These commands are true windows
  432.        programs that use a simplified DDE protocol to 
  433.        communicate with WinOne. The library needed to write these
  434.        commands has been distributed to registered users, and
  435.        will be made available to non-registered users shortly.
  436.     2. New external command SPLIT, which splits a file into two 
  437.        parts.
  438.     3. New external command TOUCH, which touches the date and time
  439.        for specified files.
  440.     4. Command TODISK no longer formats disks. See Command TOFILE 
  441.        and TODISK in the main help file for more information.
  442.  
  443. WinOne v3.3 includes the following:-        (Not Released)
  444.  
  445.     1. Bug Fixes :-
  446.  
  447.         1. Trying to exit before the screen has finished 
  448.            redrawing.
  449.         2. Clipboard drawing problems.
  450.         3. Last 4 button images missing.
  451.         4. Some minor bugs.
  452.  
  453.     2. Importing and Exporting button images. See the main WinOne 
  454.        help file for more information.
  455.     3. Added a browse button to the Change Group Icon dialog box. 
  456.     4. New verbose mode for command ARCH, which will display the
  457.        original size, compressed size, percentage, date and time 
  458.        for files inside an archive.
  459.  
  460. WinOne v3.2 includes the following:-
  461.  
  462.     1. WinOne now supports Copy and Paste to/from the clipboard. See
  463.        the main help file for more information.
  464.     2. There is now a maximum of seventeen user definable buttons 
  465.        that may be programmed.
  466.  
  467. Major Version 3.1                (Not Released)
  468. -----------------
  469.  
  470.     1. Registered users will no longer be able to use there old 
  471.        registration numbers. An update fee of $20 will be charged
  472.        for a new registration number. See the file REGISTER.FRM.
  473.     2. New command FIND. Which will locate text strings inside files.
  474.     3. New command WALLPAPER, which sets or clears the desktop 
  475.        bitmap wallpaper.
  476.     4. WinOne now supports Multiple File Extension Associations. See 
  477.        the help file for more information.
  478.     5. Accelerator keys can now be used with all dialog boxes. 
  479.  
  480. WinOne v2.8 and v2.9 includes the following:-    (Not Released)
  481.  
  482.     1. Bug fix which occasionally caused WinOne to crash.
  483.     2. Internal optimisations.
  484.  
  485. WinOne v2.7 includes the following:-        (Not Released)
  486.  
  487.     1. Improved WHERE command, which now displays the file 
  488.        description, if one exists, for any file located.
  489.     2. Two new commands TOFILE and TODISK which copies floppy disks
  490.        in a single pass. Command TOFILE copies a floppy disk to a 
  491.        file, and command TODISK copies this file back to a floppy 
  492.        disk.
  493.  
  494. WinOne v2.6 includes the following:-        (Not Released)
  495.  
  496.     1. There are now up to seven user definable buttons. This 
  497.        depends on the size of the desktop window.
  498.     2. The screen buffer can now store up to sixteen 80x24 screens.
  499.     3. New VIEWICON command that can be used for browsing through bulk
  500.        icon files (ie. .ICO, .EXE, .DLL files).
  501.     4. GROUP command will now insert into Progman group any file that
  502.        has a file extension association.
  503.  
  504. WinOne v2.5 includes the following:-
  505.  
  506.     1. Command GROUP can be used to display all Progman groups and 
  507.        files within these groups.
  508.     2. File descriptions of up to 40 characters. File Descriptions
  509.        can be modified using the DESCRIBE command. See the help
  510.        file for more information.
  511.  
  512. WinOne v2.4 includes the following:-        (Not Released)
  513.  
  514.     1. Status bar will not disappear when the main WinOne window is 
  515.        minimised.
  516.     2. Buttons selection has been improved.
  517.     3. WinOne now uses a small dynamic link library to catch all 
  518.        keyboard input and any mouse activity. This improves the 
  519.        functionality and speed of Auto Window Raise.
  520.  
  521. WinOne v2.3 includes the following:-        (Not Released)
  522.  
  523.     1. WinOne allows multiple commands to be entered on a single 
  524.        command line.
  525.     2. WinOne supports standard input and output redirection, for both
  526.        internal WinOne commands and DOS programs and commands.
  527.     3. Improved DEL command. Delete is now very fast when deleting all 
  528.        files in a directory or sub-directories. That is :-
  529.             
  530.             DEL *.*
  531.             DEL *.* /s
  532.             DEL directory_name
  533.             DEL directory_name /s
  534.  
  535.     4. New LABEL command to set volume labels.    
  536.     5. Command REN can be used to rename directories.
  537.     6. A new MONO mode has been added to the command COLOUR.
  538.  
  539. WinOne v2.2 includes the following:-        (Not Released)
  540.  
  541.     1. WinOne is now compiled for windows 3.1 only.
  542.     2. Improved execution for DOS programs. See DOS Command Execution 
  543.        and Precedence in the main help file for more information.
  544.  
  545. Major Version 2.1                (Not Released)
  546. -----------------
  547.  
  548.     1. The size of the WinOne executable program has been reduced.
  549.     2. Previous versions of WinOne had limits set on the number of 
  550.        files per directory and the number of directories that 
  551.        commands would operate on. Now WinOne handles any number 
  552.        of files per directory and any number of directories, so 
  553.        long as there is enough memory available.
  554.     3. WinOne now supports batch files, that will, when executed, be
  555.        displayed in the main WinOne Window. All standard batch 
  556.        commands (eg. IF, FOR, GOTO, CALL, ECHO, PAUSE, REM, SHIFT) 
  557.        are supported, along with replaceable parameters %0 to %9 and
  558.        environment variables.
  559.     4. Many useful enhanced batch commands have also been included. 
  560.     5. Registered user can still use there old registration numbers
  561.        with all 2.x versions of WinOne.
  562.  
  563. WinOne v1.9 includes the following:-        (Not Released)
  564.  
  565.     1. Improved TAB expansion for incomplete path and file names, which
  566.        includes command and macro names. Also CTRL + TAB displays a 
  567.        list of all names that complete the incomplete name being typed 
  568.        at the WinOne prompt.
  569.     2. New DISK command, displays the number of bytes used for all 
  570.        sub-directories.
  571.     3. New Status Bar, displays the time, free bytes in the windows 
  572.        global heap and a percentage done indicator for commands.
  573.     4. WinOne is now more multi-tasking, by checking for unprocessed 
  574.        messages more often.
  575.  
  576. WinOne v1.7 and v1.8 includes the following:-    (Not Released)
  577.  
  578.     1. System Configuration edit. Allows easy editing of AUTOEXEC.BAT, 
  579.        CONFIG.SYS and all .INI files in the windows directory. The system 
  580.        menu contains the "System" option.
  581.     2. Auto-Raise for partially hidden windows.  
  582.     3. The mouse can now be used with the SPX modules.
  583.     4. Program Manager access using the GROUP command. This command can
  584.        insert program files into Program Manager groups. 
  585.     5. Command TASKS now accepts string arguments.
  586.  
  587. WinOne v1.6 includes the following :-
  588.  
  589.     1. A vertical scroll bar, that can display the last 7 screens, given
  590.        a screen size of 80 x 24. This scroll bar is also real time. 
  591.        That is, when the thumb position is moved the screen is updated
  592.        immediately.
  593.     2. Variable font sizes. The system menu contains the "Fonts..." option,
  594.        which will allow different font sizes to be chosen. When using 
  595.        windows 3.0 there are only 4 different font sizes, and under
  596.        windows 3.1 there are 10 different font sizes.
  597.     3. Lock now uses SPX library's, thus allowing 24 different screens to
  598.        be displayed when using Lock. The system menu contains the 
  599.        "Lock Setup..." option that will allow the user to select and config
  600.        the different screens. The SPX library's are free public domain 
  601.        software, which are originally written for Screen Peace, which is 
  602.        in itself an excellent screen saver.
  603.     4. Built in Screen Saver.
  604.     5. The BUTTON command has been remove and now all functions (i.e list, 
  605.        edit, insert and delete) dealing with buttons are conducted via 
  606.        the system menu. This greatly simplifies the manipulation of 
  607.        buttons.
  608.     6. New Button images. There are now 43 button images that can be 
  609.        displayed inside a button. The order that WinOne stores these
  610.        images is different from version 1.05. This means that users will
  611.        have to edit their buttons.
  612.     7. The tab key is now part of the command line edit keys. The tab key 
  613.        will expand partial paths or file name entered on the command line.
  614.  
  615. WinOne v1.5 includes the following :-
  616.  
  617.     1. Sub-directory processing for many commands, 
  618.        including RMDIR and DEL. This allows for smart deletion
  619.        of sub-directories and files in sub-directories.
  620.     2. Many new commands (eg. VOL, DATE, TIME, ...).
  621.     3. Improved file handling. In previous versions of WinOne I 
  622.        assumed that directories could not have an extension. As a 
  623.        result, file names that did not include a dot, were assumed to 
  624.        be directories. Since this is not the case, WinOne now makes
  625.        no such assumption.
  626.     4. User definable Buttons introduced. There are now 5 user 
  627.        definable buttons that can be used to run programs. There are 
  628.        also an addition 3 system buttons that can not be altered 
  629.        (ie. EXIT, DOS SHELL and HELP). The images for buttons are
  630.        non-moving, except for the eyes button image, which tracks 
  631.        the cursor when the cursor is moved inside the window.
  632.  
  633. WinOne v1.4 includes the following :-
  634.  
  635.     1. Improved command line.
  636.     2. Saving of the history buffer.
  637.     3. improved EXIT command.
  638.     4. New command TREE.
  639.  
  640. WinOne v1.3 includes the following :- 
  641.  
  642.     1. New commands (eg DUMP, ACS etc).
  643.     2. Command line macro's using the MACRO command.
  644.     3. File extension associations can now be deleted
  645.        at the command line.
  646.     4. The full IBM character set, including all the 
  647.        graphics characters.
  648.     5. Support for .ARJ archive files. Command ARCH
  649.        will display the files inside most popular 
  650.        archive files.
  651.     6. Easier to see colours.
  652.  
  653. WinOne v1.2 includes the following :-        (First Release)
  654.  
  655.     1. Colour and ANSI graphics.
  656.     2. Support for Archive files (.ZIP .LZH .ARC).
  657.     3. Supports file extension associations.
  658.     4. Number of extra commands (eg. WHERE etc).
  659.     5. Extra wild cards support for all commands
  660.        (eg. *y.* etc.).
  661.  
  662. Not Released Versions
  663. ---------------------
  664.  
  665. Versions of WinOne marked as Not Released are offered to registered users 
  666. only. 
  667.  
  668. System Requirements
  669. -------------------
  670.  
  671. This program requires Windows 3.1 with 4 megs of RAM (ie. memory) and 
  672. DOS 5.0 or higher to operate.
  673.  
  674. WinOne performs best in Protected Mode or 386 Enhanced Mode.
  675.  
  676. Installation
  677. ------------
  678.  
  679. To install WinOne from a DOS prompt, type the following :-
  680.  
  681.     WIN INSTALL
  682.  
  683. INSTALL will only create one directory and one sub-directory and copy all the 
  684. relevant files into these directories, then a Program Manager group is created 
  685. and the WinOne icon is placed inside.
  686.  
  687. To uninstall WinOne, simply delete all the files in the directories in which 
  688. WinOne was installed, and delete the group that the WinOne icon was placed in.
  689.  
  690. More Help
  691. ---------
  692.  
  693. WinOne includes a comprehensive help file, that can only be displayed while 
  694. WinOne is running. Simply use the mouse and click on the GREEN question mark
  695. button. This help file contains all the information needed to describe all
  696. the WinOne commands and all the features (including pictures) described in 
  697. the History of Features above.
  698.  
  699. Contents of archive
  700. -------------------
  701.  
  702. This archive contains the following compressed files :-
  703.  
  704.      1. WIN_ONE.EXE        - Main executable
  705.      2. WOLIB.DLL        - WinOne library file
  706.          3. BWCC.DLL        - Borland's Custom control library
  707.      4. WOEXT.EXE        - WinOne multiple file extension associations
  708.      5. WIN_ONE.HLP        - WinOne help file
  709.      6. REGISTER.FRM     - Registration form
  710.      7. WIN_ONE.TXT        - This file
  711.      8. INSTALL.EXE        - Installation program
  712.      9. APPSETUP.INF     - Used by INSTALL.EXE
  713.     10. DESCRIPT.ION     - WinOne file descriptions
  714.  
  715.     11. AQUARIUM.SPX     - Screen Saver Module
  716.     12. BALL.SPX        - Screen Saver Module
  717.     13. DRAGON.SPX        - Screen Saver Module
  718.     14. FADE.SPX        - Screen Saver Module
  719.     15. FIRE.SPX        - Screen Saver Module
  720.     16. FLASH.SPX        - Screen Saver Module
  721.      17. FLEX.SPX        - Screen Saver Module
  722.     18. FOREST.SPX        - Screen Saver Module
  723.     19. KALSCOPE.SPX    - Screen Saver Module
  724.     20. KLOK.SPX        - Screen Saver Module
  725.     21. LIFE.SPX        - Screen Saver Module
  726.     22. MAZE.SPX        - Screen Saver Module
  727.     23. QIXREC.SPX        - Screen Saver Module
  728.     24. SHUFFLER.SPX    - Screen Saver Module
  729.     25. SKY.SPX        - Screen Saver Module
  730.     26. SOLIDS.SPX        - Screen Saver Module
  731.     27. SPACE.SPX        - Screen Saver Module
  732.     28. SPHERES.SPX        - Screen Saver Module
  733.     29. WORMS.SPX        - Screen Saver Module
  734.     30. WPINVADE.SPX    - Screen Saver Module
  735.  
  736.     31. ARRANGE.BAT        - Batch command ARRANGE
  737.     32. CASCADE.BAT        - Batch command CASCADE
  738.     33. TILE.BAT        - Batch command TILE
  739.  
  740.     34. GLOBE.RLE        - Run Length Encoded Bitmap
  741.     35. LIPS.RLE        - Run Length Encoded Bitmap
  742.     36. SEXY.RLE        - Run Length Encoded Bitmap
  743.     37. BLACK.RLE        - Run Length Encoded Bitmap
  744.  
  745.     38. WOIO.HLP         - WOIO library help file
  746.     39. WOIO.H           - WOIO library header file
  747.     40. WOIOS.LIB        - WOIO small model library
  748.     41. WOIOM.LIB        - WOIO medium model library
  749.     42. WOIOC.LIB        - WOIO compact model library
  750.     43. BWCC.LIB         - Borland's Custom control library
  751.  
  752.     44. ARGS.CPP         - External Command ARGS Source
  753.     45. ARGS.DEF         - External Command ARGS Definition
  754.     46. ARGS.DSK         - External Command ARGS Disk
  755.     47. ARGS.H         - External Command ARGS Header
  756.     48. ARGS.PRJ         - External Command ARGS Project
  757.     49. ARGS.RC         - External Command ARGS Resource        
  758.     50. MERGE.CPP        - External Command MERGE Source
  759.     51. MERGE.DEF        - External Command MERGE Definition
  760.     52. MERGE.DSK        - External Command MERGE Disk
  761.     53. MERGE.H        - External Command MERGE Header
  762.     54. MERGE.PRJ        - External Command MERGE Project
  763.     55. MERGE.RC        - External Command MERGE Resource
  764.     56. SPLIT.CPP         - External Command SPLIT Source
  765.     57. SPLIT.DEF        - External Command SPLIT Definition
  766.     58. SPLIT.DSK        - External Command SPLIT Disk
  767.     59. SPLIT.H        - External Command SPLIT Header
  768.     60. SPLIT.PRJ        - External Command SPLIT Project
  769.     61. SPLIT.RC        - External Command SPLIT Resource
  770.     62. TOUCH.CPP        - External Command TOUCH Source
  771.     63. TOUCH.DEF        - External Command TOUCH Definition
  772.     64. TOUCH.DSK        - External Command TOUCH Disk
  773.     65. TOUCH.H        - External Command TOUCH Header
  774.     66. TOUCH.PRJ        - External Command TOUCH Project
  775.     67. TOUCH.RC        - External Command TOUCH Resource
  776.  
  777.     68. ARGS.EXE         - External Command ARGS
  778.     69. AUTOGEN.EXE      - External command AUTOGEN
  779.     70. BASE.EXE        - External command BASE
  780.     71. CALEND.EXE        - External command CALEND
  781.     72. CMP.EXE        - External command CMP
  782.     73. DECOMP.EXE        - External command DECOMP
  783.     74. DETAR.EXE        - External command DETAR
  784.     75. DUPLICAT.EXE    - External command DUPLICATE
  785.     76. FUNC.EXE        - External command FUNC
  786.     77. GOTHIC.EXE       - External command GOTHIC
  787.     78. LOGO.EXE        - External command LOGO
  788.     79. MERGE.EXE        - External command MERGE
  789.     80. SBANNER.EXE      - External command SBANNER
  790.     81. SHRED.EXE        - External command SHRED
  791.     82. SPLIT.EXE        - External command SPLIT
  792.     83. TITLE.EXE        - External command TITLE
  793.     84. TOUCH.EXE        - External command TOUCH
  794.  
  795. Trademarks
  796. ----------
  797.  
  798. Borland and Turbo C are registered tradmarks of Borland International, Inc.
  799. Windows and MS-DOS are registered tradmarks of Microsoft Corporation.
  800.